1f4dd62b889b678670f0c13c4ea80890c1242a02,plugins/org.eclipse.xtext.xtend2.ui/src/org/eclipse/xtext/xtend2/ui/outline/Xtend2OutlineTreeProvider.java,Xtend2OutlineTreeProvider,_text,#XtendImport#,106
Before Change
}
protected Object _text(XtendImport xtendImport) {
return xtendImport.getImportedTypeName();
}
protected int index(XtendFunction f) {
After Change
}
protected Object _text(XtendImport xtendImport) {
return (xtendImport.getImportedNamespace() != null)
? xtendImport.getImportedNamespace()
: xtendImport.getImportedTypeName();
}
protected int index(XtendFunction f) {